home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / games1 / nfa-hdin.lha / NFA-HDInstallers / BubblenSqueak / Installer < prev    next >
AmigaDOS Script File  |  1992-09-02  |  1KB  |  58 lines

  1. .key test/s,full/s
  2. .bra [
  3. .ket ]
  4.  
  5. echo "*Ec*N                Bubble & Squeak Hard Drive Installer*N"
  6.  
  7. lab nameloop
  8.   echo "Which partition do you want to install Bubble to? (eg DH0: Work:) " noline
  9.   set >NIL: target ?
  10.   if "$target" EQ "Q"
  11.       skip exit
  12.   endif
  13.  
  14.   if "`echo $target len 1`" NOT EQ ":"
  15.     set target $target:
  16.   endif
  17.  
  18.   assign >NIL: exists "${Target}"
  19.   if warn
  20.     echo "Error: partition does not exist.*N"
  21.     skip back nameloop
  22.   endif
  23.  
  24. lab partok
  25.  
  26. assign Target: "${Target}"
  27. c:makedir >nil: target:Bubble
  28. c:copy cls ram:
  29. ram:cls
  30. c:copy Bubbl target:Bubble.info
  31. c:copy Bubble&Squeak target:bubble/
  32. c:copy Bubble&Squea target:bubble/Bubble&Squeak.info
  33. lab disk?
  34. assign >nil: exists Bubble1:
  35. if warn
  36. ram:cls 
  37. c:echo "*n*n*n*n*n*n*n*n*n                              Insert Disk One"
  38.  skip back disk?
  39. endif
  40. ram:cls
  41. c:echo "*n*nPlease wait while i copy disk one..........."
  42. c:copy >nil: bubble1: target:bubble/ all
  43. lab disk3?
  44. assign >nil: exists Bubble2:
  45. if warn
  46. ram:cls 
  47. c:echo "*n*n*n*n*n*n*n*n*n                              Insert Disk Two"
  48.  skip back disk3?
  49. endif
  50. ram:cls
  51. c:echo "*n*nPlease wait while i copy disk two..........."
  52. c:copy >nil: bubble2: target:bubble/ all
  53.  
  54. lab exit
  55. ram:cls
  56. c:echo "*n*n All done now please reboot!"
  57.   
  58.